home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / E-P-O.ZIP / THING-6.INC < prev    next >
Encoding:
Text File  |  1996-10-31  |  981 b   |  36 lines

  1.  
  2. //------------------------------------------------------------------->
  3. //
  4. // thing-6.inc
  5. //
  6. // "Easy POV Oven"
  7. //
  8. // Written By: Paul T. Dawson
  9. //             ptdawson@voicenet.com
  10. //             http://www.voicenet.com/~ptdawson
  11. //
  12. // All code and techniques are PUBLIC DOMAIN - have fun with it!
  13. //
  14. //------------------------------------------------------------------->
  15. //
  16. // Thing_6 is a simple mirror sphere. It lets you see all four walls,
  17. // and the sky (the ceiling blew off).
  18. //
  19. //------------------------------------------------------------------->
  20. //
  21. // Go ahead and build it. This pokes through the bottom of the pan,
  22. // but don't tell anybody! 8-)
  23.  
  24.         #declare Thing_6 = sphere { 0, 1
  25.  
  26.                 scale < 3.9, 3.0, 3.9 >
  27.                 pigment { White }
  28.                 finish { Mirror }
  29.  
  30.                 } // End of sphere.
  31.  
  32. //------------------------------------------------------------------->
  33. //
  34. // End of this file.
  35.  
  36.